.topPanel {
  position: relative;
  z-index: 100;
  padding: 16px 24px;
  background: #2d2d2d;
  color: #fff;
  margin-bottom: 16px; }
  .topPanel a {
    color: #fff;
    text-decoration: none; }
  .topPanel .view_type {
    flex-grow: 1; }
    .topPanel .view_type a {
      padding: 8px 35px;
      border-radius: 6px;
      transition: ease .3s; }
      .topPanel .view_type a:first-child {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-right: none;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0; }
      .topPanel .view_type a:last-child {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0; }
      .topPanel .view_type a:hover, .topPanel .view_type a.active {
        border-color: #007AFF;
        background: #007AFF; }
  .topPanelInner {
    max-width: 1024px;
    min-height: 37px;
    margin: auto;
    display: flex;
    align-items: center; }
    @media (max-width: 763px) {
      .topPanelInner {
        width: auto; } }
  .topPanelText {
    flex-grow: 1;
    font-size: 20px;
    font-weight: 500; }
  @media print {
    .topPanel {
      display: none; } }

.button {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  background: #007AFF;
  transition: ease .3s; }
  .button span {
    color: #fff; }
  .button:hover {
    opacity: .7; }
  .button--disabled {
    background: #eee;
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: .8; }
  .button--hidden {
    visibility: hidden; }

.download-container {
  min-width: 125px; }

#overlay {
  display: none;
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100%;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); }
  #overlay.show {
    display: flex; }
  #overlay .text {
    width: 100%; }
  #overlay p {
    text-align: center;
    font-size: 72px;
    color: #fff;
    font-weight: 700; }
